home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib6 / v_08_08 / 8n08107a < prev    next >
Encoding:
Text File  |  1995-11-01  |  338 b   |  21 lines

  1. Events and Windows
  2. Richard Rathe MD
  3. Listing 5
  4.  
  5. /*** activate message dispatcher ***/
  6.  
  7. void do_activate(event)
  8. EventRecord event;
  9. {
  10.   WindowPtr window;
  11.   WIND      *windinfo;
  12.   
  13.   window = (WindowPtr)event.message;
  14.   
  15.   windinfo = 
  16.     (WIND *)GetWRefCon(window);
  17.     
  18.   (*windinfo->activateproc)(window,windinfo);
  19. }
  20.  
  21.